function pobierz()
{
  url = "http://localhost/dane.txt";
  startGETRequest(url, onComplete, onEnd);
}

function onComplete(responseText, responseXML)
{
  eval(responseText);
}

function onEnd()
{
}
